diff options
| author | joonhoekim <26rote@gmail.com> | 2025-12-08 14:19:37 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-12-08 14:19:37 +0900 |
| commit | 2ac7deb8494cf4123f0cff3321860585a44f157c (patch) | |
| tree | 789b6980c8f863a0f675fad38c4a17d91ba28bf3 /app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx | |
| parent | 71c0ba1f01b98770ec2c60cdb935ffb36c1830a9 (diff) | |
| parent | e37cce51ccfa3dcb91904b2492df3a29970fadf7 (diff) | |
Merge remote-tracking branch 'origin/sec-patch' into table-v2
Diffstat (limited to 'app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx b/app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx index c10a41ea..75796b98 100644 --- a/app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx +++ b/app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx @@ -7,12 +7,16 @@ import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"; import { SearchParamsCache } from "@/lib/integration-log/validations"; import { getIntegrationLogs } from "@/lib/integration-log/service"; import { IntegrationLogTable } from "@/lib/integration-log/table/integration-log-table"; +import { useTranslation } from "@/i18n"; interface IntegrationLogPageProps { + params: Promise<{ lng: string }> searchParams: Promise<SearchParams>; } export default async function IntegrationLogPage(props: IntegrationLogPageProps) { + const { lng } = await props.params + const { t } = await useTranslation(lng, 'menu') const searchParams = await props.searchParams; const search = SearchParamsCache.parse(searchParams); const validFilters = getValidFilters(search.filters); @@ -28,10 +32,9 @@ export default async function IntegrationLogPage(props: IntegrationLogPageProps) <Shell className="gap-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight">인터페이스 이력 조회</h2> - <p className="text-muted-foreground"> - 인터페이스 실행 이력을 조회합니다. 검색, 필터링, 정렬이 가능합니다. - </p> + <h2 className="text-2xl font-bold tracking-tight"> + {t('menu.information_system.integration_log')} + </h2> </div> </div> <React.Suspense fallback={<Skeleton className="h-7 w-52" />}></React.Suspense> @@ -50,4 +53,4 @@ export default async function IntegrationLogPage(props: IntegrationLogPageProps) </React.Suspense> </Shell> ); -}
\ No newline at end of file +} |
